home *** CD-ROM | disk | FTP | other *** search
/ Total Network Tools 2002 / NextStepPublishing-TotalNetworkTools2002-Win95.iso / Archive / Misc Servers / Zope.exe / CATALOGSCHEMA.DTML < prev    next >
Encoding:
Text File  |  2000-07-19  |  1.8 KB  |  49 lines

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
  2. <HTML lang="en">
  3. <HEAD>
  4. <TITLE>View Catalog Records</TITLE>
  5. </HEAD>
  6. <BODY BGCOLOR="#FFFFFF" LINK="#000099" VLINK="#555555">
  7. <dtml-var manage_tabs>
  8.  
  9. <p>This list defines what per object meta data the Catalog will store.
  10. When objects get cataloged, the values of any attributes they may have
  11. which match a name in this list will get stored in a table in the
  12. Catalog.  The Catalog then uses this information to create result
  13. objects that are returned whenever the catalog is searched.  It is
  14. important to understand that when the Catalog is searched, it returns
  15. a list of result objects, <i>not the cataloged objects themselves</i>, 
  16. so if you want to use the value of an object's attribute in the result 
  17. of a search, that attribute must be in this list</p>
  18.  
  19. <p>It is generally a good idea to keep this list lightweight.  It is
  20. useful, for example, to keep the 'summary' meta data of a text
  21. document (like the first 200 characters) but <i>not</i> the text
  22. content in it's entirety (it is useful in this example to <i>index</i>
  23. the text contents, which is configured in the <b>Indexes</b> View
  24. tab).  This way, the summary data may be shown in the search results.</p>
  25.  
  26. <form action="<dtml-var URL1>">
  27.  
  28. <ul>
  29. <dtml-in schema sort=sequence-item>
  30.  <li>
  31.   <input type="checkbox" name="names:list" value="<dtml-var sequence-item html_quote>">
  32. <dtml-var sequence-item></li>
  33. </dtml-in>
  34. </ul>
  35. <br>
  36. <input name="manage_delColumns:method" type=submit value=" Delete ">
  37. column from Meta Data table.<br><br>
  38. Add column to the Meta Data table:<br> <input name="name"> 
  39. <input name="manage_addColumn:method" type=submit value=" Add ">
  40. </form>
  41.  
  42. </BODY></HTML>
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.